home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / cp855.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  4KB  |  167 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """ Python Character Mapping Codec generated from 'CP855.TXT' with gencodec.py.
  5.  
  6. Written by Marc-Andre Lemburg (mal@lemburg.com).
  7.  
  8. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  9. (c) Copyright 2000 Guido van Rossum.
  10.  
  11. """
  12. import codecs
  13.  
  14. class Codec(codecs.Codec):
  15.     
  16.     def encode(self, input, errors = 'strict'):
  17.         return codecs.charmap_encode(input, errors, encoding_map)
  18.  
  19.     
  20.     def decode(self, input, errors = 'strict'):
  21.         return codecs.charmap_decode(input, errors, decoding_map)
  22.  
  23.  
  24.  
  25. class StreamWriter(Codec, codecs.StreamWriter):
  26.     pass
  27.  
  28.  
  29. class StreamReader(Codec, codecs.StreamReader):
  30.     pass
  31.  
  32.  
  33. def getregentry():
  34.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  35.  
  36. decoding_map = codecs.make_identity_dict(range(256))
  37. decoding_map.update({
  38.     128: 1106,
  39.     129: 1026,
  40.     130: 1107,
  41.     131: 1027,
  42.     132: 1105,
  43.     133: 1025,
  44.     134: 1108,
  45.     135: 1028,
  46.     136: 1109,
  47.     137: 1029,
  48.     138: 1110,
  49.     139: 1030,
  50.     140: 1111,
  51.     141: 1031,
  52.     142: 1112,
  53.     143: 1032,
  54.     144: 1113,
  55.     145: 1033,
  56.     146: 1114,
  57.     147: 1034,
  58.     148: 1115,
  59.     149: 1035,
  60.     150: 1116,
  61.     151: 1036,
  62.     152: 1118,
  63.     153: 1038,
  64.     154: 1119,
  65.     155: 1039,
  66.     156: 1102,
  67.     157: 1070,
  68.     158: 1098,
  69.     159: 1066,
  70.     160: 1072,
  71.     161: 1040,
  72.     162: 1073,
  73.     163: 1041,
  74.     164: 1094,
  75.     165: 1062,
  76.     166: 1076,
  77.     167: 1044,
  78.     168: 1077,
  79.     169: 1045,
  80.     170: 1092,
  81.     171: 1060,
  82.     172: 1075,
  83.     173: 1043,
  84.     174: 171,
  85.     175: 187,
  86.     176: 9617,
  87.     177: 9618,
  88.     178: 9619,
  89.     179: 9474,
  90.     180: 9508,
  91.     181: 1093,
  92.     182: 1061,
  93.     183: 1080,
  94.     184: 1048,
  95.     185: 9571,
  96.     186: 9553,
  97.     187: 9559,
  98.     188: 9565,
  99.     189: 1081,
  100.     190: 1049,
  101.     191: 9488,
  102.     192: 9492,
  103.     193: 9524,
  104.     194: 9516,
  105.     195: 9500,
  106.     196: 9472,
  107.     197: 9532,
  108.     198: 1082,
  109.     199: 1050,
  110.     200: 9562,
  111.     201: 9556,
  112.     202: 9577,
  113.     203: 9574,
  114.     204: 9568,
  115.     205: 9552,
  116.     206: 9580,
  117.     207: 164,
  118.     208: 1083,
  119.     209: 1051,
  120.     210: 1084,
  121.     211: 1052,
  122.     212: 1085,
  123.     213: 1053,
  124.     214: 1086,
  125.     215: 1054,
  126.     216: 1087,
  127.     217: 9496,
  128.     218: 9484,
  129.     219: 9608,
  130.     220: 9604,
  131.     221: 1055,
  132.     222: 1103,
  133.     223: 9600,
  134.     224: 1071,
  135.     225: 1088,
  136.     226: 1056,
  137.     227: 1089,
  138.     228: 1057,
  139.     229: 1090,
  140.     230: 1058,
  141.     231: 1091,
  142.     232: 1059,
  143.     233: 1078,
  144.     234: 1046,
  145.     235: 1074,
  146.     236: 1042,
  147.     237: 1100,
  148.     238: 1068,
  149.     239: 8470,
  150.     240: 173,
  151.     241: 1099,
  152.     242: 1067,
  153.     243: 1079,
  154.     244: 1047,
  155.     245: 1096,
  156.     246: 1064,
  157.     247: 1101,
  158.     248: 1069,
  159.     249: 1097,
  160.     250: 1065,
  161.     251: 1095,
  162.     252: 1063,
  163.     253: 167,
  164.     254: 9632,
  165.     255: 160 })
  166. encoding_map = codecs.make_encoding_map(decoding_map)
  167.